home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / wprot.c < prev    next >
C/C++ Source or Header  |  1995-05-09  |  69KB  |  2,454 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.    
  4.   
  5.    3.26.90    Harry Morris, morris@think.com
  6.    3.30.90  Harry Morris 
  7.    -    removed chunk code from WAISSearchAPDU,
  8.    -    added makeWAISQueryType1Query() and readWAISType1Query() which replace
  9.    makeWAISQueryTerms() and makeWAISQueryDocs().
  10.    4.11.90  HWM - generalized conditional includes (see c-dialect.h)
  11.    - renamed makeWAISType1Query() to makeWAISTextQuery()
  12.    renamed readWAISType1Query() to readWAISTextQuery()
  13.    5.29.90  TS - fixed bug in makeWAISQueryDocs
  14.    added CSTFreeWAISFoo functions
  15. */
  16.  
  17. #ifndef lint
  18. static char *RCSid = "$Header: /tmp_mnt/net/quake/proj/wais/wais-8-b5/ir/RCS/wprot.c,v 1.8 92/04/02 14:20:58 jonathan Exp $";
  19. #endif
  20.  
  21. /* Change log:
  22.  * $Log:    wprot.c,v $
  23.  * Revision 1.8  92/04/02  14:20:58  jonathan
  24.  * Backed out last change.
  25.  * 
  26.  * Revision 1.7  92/04/02  09:49:49  jonathan
  27.  * Don't free the doc->type in freeDocObj: it's not a copy!
  28.  * 
  29.  * Revision 1.6  92/02/12  13:57:34  jonathan
  30.  * Added "$Log" so RCS will put the log message in the header
  31.  * 
  32.  * 
  33. */
  34.  
  35. #define _C_WAIS_protocol_
  36.  
  37. /*    This file implements the Z39.50 extensions required for WAIS 
  38. */
  39.  
  40. #include "wprot.h"
  41. #include "cutil.h"
  42. #include "panic.h"
  43. #include <string.h> /* for memmove */
  44.  
  45. #ifndef ANSI_LIKE
  46. #include "ustubs.h"
  47. #endif
  48.  
  49. /* very rough estimates of the size of an object */
  50. #define DefWAISInitResponseSize        (size_t)200
  51. #define DefWAISSearchSize            (size_t)3000
  52. #define DefWAISSearchResponseSize    (size_t)6000
  53. #define DefWAISPresentSize            (size_t)1000
  54. #define DefWAISPresentResponseSize    (size_t)6000
  55. #define DefWAISDocHeaderSize        (size_t)500
  56. #define DefWAISShortHeaderSize        (size_t)200
  57. #define DefWAISLongHeaderSize        (size_t)800
  58. #define DefWAISDocTextSize            (size_t)6000
  59. #define DefWAISDocHeadlineSize        (size_t)500
  60. #define DefWAISDocCodeSize            (size_t)500
  61.  
  62. #define RESERVE_SPACE_FOR_WAIS_HEADER(len)    \
  63.      if (*len > 0)                            \
  64.          *len -= header_len;
  65.  
  66. static char* writeUserInfoHeader _AP((data_tag tag,long infoSize,    
  67.                       long estHeaderSize,char* buffer,
  68.                       long* len));
  69.  
  70. static unsigned long userInfoTagSize _AP((data_tag tag,
  71.                       unsigned long length));
  72.  
  73. /*----------------------------------------------------------------------*/
  74.  
  75. char*
  76. writeInitInfo(init,buffer,len)
  77. InitAPDU* init;
  78. char* buffer;
  79. long* len;
  80. {
  81.   char *userInfo, *buf;
  82.   /* The WAIS protocol doesn't use init info - does now! JG*/
  83.  
  84.   /* older servers barf on this.  Someday we can use it... 
  85.   userInfo = (char *)init->UserInformationField; */
  86.   userInfo = NULL;
  87.  
  88.   if(userInfo != NULL) {
  89.     buf = writeString(userInfo, DT_UserInformationField, buffer, len);
  90.     return(buf);
  91.   }
  92.   else return buffer;
  93. }
  94.  
  95. /*----------------------------------------------------------------------*/
  96.  
  97. static char* readUserInfoHeader _AP((data_tag* tag,unsigned long* num,
  98.                      char* buffer));
  99.  
  100. char*
  101. readInitInfo(info,buffer)
  102. void** info;
  103. char* buffer;
  104. {
  105.   /* The WAIS protocol doesn't use init info */
  106.   readString((char **)info, buffer);
  107.   return buffer;
  108. }
  109.  
  110. /*----------------------------------------------------------------------*/
  111.  
  112. static unsigned long
  113. userInfoTagSize(tag,length)
  114. data_tag tag;
  115. unsigned long length;
  116. /* return the number of bytes required to write the user info tag and
  117.    length 
  118.  */
  119. {
  120.   unsigned long size;
  121.  
  122.   /* calculate bytes required to represent tag.  max tag is 16K */
  123.   size = writtenCompressedIntSize(tag);
  124.   size += writtenCompressedIntSize(length);
  125.       
  126.   return(size);
  127. }   
  128.  
  129. /*----------------------------------------------------------------------*/
  130.  
  131. static char*
  132. writeUserInfoHeader(tag,infoSize,estHeaderSize,buffer,len)
  133. data_tag tag;
  134. long infoSize;
  135. long estHeaderSize;
  136. char* buffer;
  137. long* len;
  138. /* write the tag and size, making sure the info fits.  return the true end
  139.    of the info (after adjustment) note that the argument infoSize includes
  140.    estHeaderSize.  Note that the argument len is the number of bytes remaining
  141.    in the buffer.  Since we write the tag and size at the begining of the
  142.    buffer (in space that we reserved) we don't want to pass len the calls which
  143.    do that writing. 
  144.  */
  145. {
  146.   long dummyLen = 100;        /* plenty of space for a tag and size */
  147.   char* buf = buffer;
  148.   long realSize = infoSize - estHeaderSize;
  149.   long realHeaderSize = userInfoTagSize(tag,realSize);
  150.  
  151.   if (buffer == NULL || *len == 0)
  152.     return(NULL);
  153.   
  154.   /* write the tag */
  155.   buf = writeTag(tag,buf,&dummyLen);
  156.   
  157.   /* see if the if the header size was correct. if not,
  158.      we have to shift the info to fit the real header size */
  159.   if (estHeaderSize != realHeaderSize)
  160.     {                /* make sure there is enough space */
  161.       CHECK_FOR_SPACE_LEFT(realHeaderSize - estHeaderSize,len);
  162.       memmove(buffer + realHeaderSize,buffer + estHeaderSize,(size_t)(realSize));
  163.     }
  164.    
  165.   /* write the size */
  166.   writeCompressedInteger(realSize,buf,&dummyLen);
  167.   
  168.   /* return the true end of buffer */
  169.   return(buffer + realHeaderSize + realSize);
  170. }
  171.  
  172. /*----------------------------------------------------------------------*/
  173.  
  174. static char*
  175. readUserInfoHeader(tag,num,buffer)
  176. data_tag* tag;
  177. unsigned long* num;
  178. char* buffer;
  179. /* read the tag and size */
  180. {
  181.   char* buf = buffer;
  182.   buf = readTag(tag,buf);
  183.   buf = readCompressedInteger(num,buf);
  184.   return(buf); 
  185. }
  186.  
  187. /*----------------------------------------------------------------------*/
  188.  
  189. WAISInitResponse* 
  190. makeWAISInitResponse(chunkCode,
  191.              chunkIDLen,
  192.              chunkMarker,
  193.              highlightMarker,
  194.              deHighlightMarker,
  195.              newLineChars)
  196. long chunkCode;
  197. long chunkIDLen;
  198. char* chunkMarker;
  199. char* highlightMarker;
  200. char* deHighlightMarker;
  201. char* newLineChars;
  202. /* create a WAIS init response object */
  203. {
  204.   WAISInitResponse* init = (WAISInitResponse*)s_malloc((size_t)sizeof(WAISInitResponse));
  205.  
  206.   init->ChunkCode = chunkCode;    /* note: none are copied! */
  207.   init->ChunkIDLength = chunkIDLen;
  208.   init->ChunkMarker = chunkMarker;
  209.   init->HighlightMarker = highlightMarker;
  210.   init->DeHighlightMarker = deHighlightMarker;
  211.   init->NewlineCharacters = newLineChars;
  212.   
  213.   return(init);
  214. }
  215.  
  216. /*----------------------------------------------------------------------*/
  217.  
  218. void 
  219. freeWAISInitResponse(init)
  220. WAISInitResponse* init;
  221. /* free an object made with makeWAISInitResponse */
  222. {
  223.   s_free(init->ChunkMarker);
  224.   s_free(init->HighlightMarker);
  225.   s_free(init->DeHighlightMarker);
  226.   s_free(init->NewlineCharacters);
  227.   s_free(init);
  228. }
  229.  
  230. /*----------------------------------------------------------------------*/
  231.  
  232. char*
  233. writeInitResponseInfo(init,buffer,len)
  234. InitResponseAPDU* init;
  235. char* buffer;
  236. long* len;
  237. /* write an init response object */
  238. {
  239.   unsigned long header_len = userInfoTagSize(DT_UserInformationLength,
  240.                          DefWAISInitResponseSize);
  241.   char* buf = buffer + header_len;
  242.   WAISInitResponse* info = (WAISInitResponse*)init->UserInformationField;
  243.   unsigned long size;
  244.   
  245.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  246.     
  247.   buf = writeNum(info->ChunkCode,DT_ChunkCode,buf,len);
  248.   buf = writeNum(info->ChunkIDLength,DT_ChunkIDLength,buf,len);
  249.   buf = writeString(info->ChunkMarker,DT_ChunkMarker,buf,len);
  250.   buf = writeString(info->HighlightMarker,DT_HighlightMarker,buf,len);
  251.   buf = writeString(info->DeHighlightMarker,DT_DeHighlightMarker,buf,len);
  252.   buf = writeString(info->NewlineCharacters,DT_NewlineCharacters,buf,len);
  253.   
  254.   /* now write the header and size */
  255.   size = buf - buffer; 
  256.   buf = writeUserInfoHeader(DT_UserInformationLength,size,header_len,buffer,len);
  257.   
  258.   return(buf);
  259. }
  260.  
  261. /*----------------------------------------------------------------------*/
  262.  
  263. char*
  264. readInitResponseInfo(info,buffer)
  265. void** info;
  266. char* buffer;
  267. /* read an init response object */
  268. {
  269.   char* buf = buffer;
  270.   unsigned long size; 
  271.   unsigned long headerSize;
  272.   data_tag tag;
  273.   long chunkCode,chunkIDLen;
  274.   char* chunkMarker = NULL;
  275.   char* highlightMarker = NULL;
  276.   char* deHighlightMarker = NULL;
  277.   char* newLineChars = NULL;
  278.   
  279.   chunkCode = chunkIDLen = UNUSED;
  280.   
  281.   buf = readUserInfoHeader(&tag,&size,buf);
  282.   headerSize = buf - buffer;
  283.     
  284.   while (buf < (buffer + size + headerSize))
  285.     { data_tag tag = peekTag(buf);
  286.       switch (tag)
  287.     { case DT_ChunkCode:
  288.         buf = readNum(&chunkCode,buf);
  289.         break;
  290.       case DT_ChunkIDLength:
  291.         buf = readNum(&chunkIDLen,buf);
  292.         break;
  293.       case DT_ChunkMarker:
  294.         buf = readString(&chunkMarker,buf);
  295.         break;
  296.       case DT_HighlightMarker:
  297.         buf = readString(&highlightMarker,buf);
  298.         break;
  299.       case DT_DeHighlightMarker:
  300.         buf = readString(&deHighlightMarker,buf);
  301.         break;
  302.       case DT_NewlineCharacters:
  303.         buf = readString(&newLineChars,buf);
  304.         break;
  305.       default:
  306.         s_free(highlightMarker);
  307.         s_free(deHighlightMarker);
  308.         s_free(newLineChars);
  309.         REPORT_READ_ERROR(buf);
  310.         break;
  311.       }
  312.     }
  313.         
  314.   *info = (void *)makeWAISInitResponse(chunkCode,chunkIDLen,chunkMarker,
  315.                    highlightMarker,deHighlightMarker,
  316.                    newLineChars);
  317.   return(buf);
  318. }
  319.  
  320. /*----------------------------------------------------------------------*/
  321.  
  322. WAISSearch* 
  323. makeWAISSearch(seedWords,
  324.            docs,
  325.            textList,
  326.            dateFactor,
  327.            beginDateRange,
  328.            endDateRange,
  329.            maxDocsRetrieved)
  330. char* seedWords;
  331. DocObj** docs;
  332. char** textList;
  333. long dateFactor;
  334. char* beginDateRange;
  335. char* endDateRange;
  336. long maxDocsRetrieved;
  337.  
  338. /* create a type 3 query object */
  339.   WAISSearch* query = (WAISSearch*)s_malloc((size_t)sizeof(WAISSearch));
  340.  
  341.   query->SeedWords = seedWords;    /* not copied! */
  342.   query->Docs = docs;        /* not copied! */
  343.   query->TextList = textList;    /* not copied! */
  344.   query->DateFactor = dateFactor;
  345.   query->BeginDateRange = beginDateRange;
  346.   query->EndDateRange = endDateRange;
  347.   query->MaxDocumentsRetrieved = maxDocsRetrieved;
  348.   
  349.   return(query);
  350. }
  351.  
  352. /*----------------------------------------------------------------------*/
  353.  
  354. void 
  355. freeWAISSearch(query)
  356. WAISSearch* query;
  357.  
  358. /* destroy an object made with makeWAISSearch() */
  359. {
  360.   void* ptr = NULL;
  361.   long i;
  362.   
  363.   s_free(query->SeedWords);
  364.   
  365.   if (query->Docs != NULL)
  366.     for (i = 0,ptr = (void *)query->Docs[i]; ptr != NULL; ptr = (void *)query->Docs[++i])
  367.       freeDocObj((DocObj*)ptr);
  368.   s_free(query->Docs);
  369.    
  370.   if (query->TextList != NULL)    /* XXX revisit when textlist is fully defined */
  371.     for (i = 0,ptr = (void *)query->TextList[i]; ptr != NULL; ptr = (void *)query->TextList[++i])
  372.       s_free(ptr);
  373.   s_free(query->TextList);
  374.  
  375.   s_free(query->BeginDateRange);
  376.   s_free(query->EndDateRange);
  377.   s_free(query);
  378. }
  379.  
  380. /*----------------------------------------------------------------------*/
  381.  
  382. DocObj* 
  383. makeDocObjUsingWholeDocument(docID,type)
  384. any* docID;
  385. char* type;
  386.  
  387. /* construct a document object using byte chunks - only for use by
  388.    servers */
  389. {
  390.   DocObj* doc = (DocObj*)s_malloc((size_t)sizeof(DocObj));
  391.   doc->DocumentID = docID;        /* not copied! */
  392.   doc->Type = type;        /* not copied! */
  393.   doc->ChunkCode = CT_document;
  394.   return(doc);
  395. }
  396.  
  397. /*----------------------------------------------------------------------*/
  398.  
  399. DocObj* 
  400. makeDocObjUsingLines(docID,type,start,end)
  401. any* docID;
  402. char* type;
  403. long start;
  404. long end;
  405.  
  406. /* construct a document object using line chunks - only for use by
  407.    servers */
  408. {
  409.   DocObj* doc = (DocObj*)s_malloc((size_t)sizeof(DocObj));
  410.   doc->ChunkCode = CT_line;
  411.   doc->DocumentID = docID;        /* not copied */
  412.   doc->Type = type;        /* not copied! */
  413.   doc->ChunkStart.Pos = start;
  414.   doc->ChunkEnd.Pos = end;
  415.   return(doc);
  416. }
  417.  
  418. /*----------------------------------------------------------------------*/
  419.  
  420.  
  421. DocObj* 
  422. makeDocObjUsingBytes(docID,type,start,end)
  423. any* docID;
  424. char* type;
  425. long start;
  426. long end;
  427.  
  428. /* construct a document object using byte chunks - only for use by
  429.    servers */
  430. {
  431.   DocObj* doc = (DocObj*)s_malloc((size_t)sizeof(DocObj));
  432.   doc->ChunkCode = CT_byte;
  433.   doc->DocumentID = docID;        /* not copied */
  434.   doc->Type = type;        /* not copied! */
  435.   doc->ChunkStart.Pos = start;
  436.   doc->ChunkEnd.Pos = end;
  437.   return(doc);
  438. }
  439.  
  440. /*----------------------------------------------------------------------*/
  441.  
  442. DocObj* 
  443. makeDocObjUsingParagraphs(docID,type,start,end)
  444. any* docID;
  445. char* type;
  446. any* start;
  447. any* end;
  448.  
  449. /* construct a document object using byte chunks - only for use by
  450.    servers */
  451. {
  452.   DocObj* doc = (DocObj*)s_malloc((size_t)sizeof(DocObj));
  453.   doc->ChunkCode = CT_paragraph;
  454.   doc->DocumentID = docID;        /* not copied */
  455.   doc->Type = type;
  456.   doc->ChunkStart.ID = start; 
  457.   doc->ChunkEnd.ID = end; 
  458.   return(doc);
  459. }
  460.  
  461. /*----------------------------------------------------------------------*/
  462.  
  463. void
  464. freeDocObj(doc)
  465. DocObj* doc;
  466.  
  467. /* free a docObj */
  468. {
  469.   freeAny(doc->DocumentID);
  470.   s_free(doc->Type);
  471.   if (doc->ChunkCode == CT_paragraph)
  472.     { freeAny(doc->ChunkStart.ID);
  473.       freeAny(doc->ChunkEnd.ID);
  474.     }
  475.   s_free(doc);
  476. }
  477.  
  478. /*----------------------------------------------------------------------*/
  479.  
  480. static char* writeDocObj _AP((DocObj* doc,char* buffer,long* len));
  481.  
  482. static char*
  483. writeDocObj(doc,buffer,len)
  484. DocObj* doc;
  485. char* buffer;
  486. long* len;
  487.  
  488. /* write as little as we can about the doc obj */
  489. {
  490.   char* buf = buffer;
  491.   
  492.   /* we alwasy have to write the id, but its tag depends on if its a chunk */
  493.   if (doc->ChunkCode == CT_document)
  494.     buf = writeAny(doc->DocumentID,DT_DocumentID,buf,len);
  495.   else
  496.     buf = writeAny(doc->DocumentID,DT_DocumentIDChunk,buf,len);
  497.   
  498.   if (doc->Type != NULL)
  499.     buf = writeString(doc->Type,DT_TYPE,buf,len);
  500.   
  501.   switch (doc->ChunkCode)
  502.     { case CT_document:
  503.     /* do nothing - there is no chunk data */
  504.     break;
  505.       case CT_byte:
  506.       case CT_line:
  507.     buf = writeNum(doc->ChunkCode,DT_ChunkCode,buf,len);
  508.     buf = writeNum(doc->ChunkStart.Pos,DT_ChunkStartID,buf,len);
  509.     buf = writeNum(doc->ChunkEnd.Pos,DT_ChunkEndID,buf,len);
  510.     break;
  511.       case CT_paragraph:
  512.     buf = writeNum(doc->ChunkCode,DT_ChunkCode,buf,len);
  513.     buf = writeAny(doc->ChunkStart.ID,DT_ChunkStartID,buf,len);
  514.     buf = writeAny(doc->ChunkEnd.ID,DT_ChunkEndID,buf,len);
  515.     break;
  516.       default:
  517.     panic("Implementation error: unknown chuck type %ld",
  518.           doc->ChunkCode);
  519.     break;
  520.       }
  521.    
  522.   return(buf);
  523. }
  524.  
  525. /*----------------------------------------------------------------------*/
  526.  
  527. static char* readDocObj _AP((DocObj** doc,char* buffer));
  528.  
  529. static char*
  530. readDocObj(doc,buffer)
  531. DocObj** doc;
  532. char* buffer;
  533.  
  534. /* read whatever we have about the new document */
  535. {
  536.   char* buf = buffer;
  537.   data_tag tag;
  538.   
  539.   *doc = (DocObj*)s_malloc((size_t)sizeof(DocObj));
  540.   
  541.   tag = peekTag(buf);
  542.   buf = readAny(&((*doc)->DocumentID),buf);
  543.   
  544.   if (tag == DT_DocumentID)
  545.     { (*doc)->ChunkCode = CT_document;
  546.       tag = peekTag(buf);
  547.       if (tag == DT_TYPE)    /* XXX depends on DT_TYPE != what comes next */
  548.     buf = readString(&((*doc)->Type),buf);
  549.       /* ChunkStart and ChunkEnd are undefined */
  550.     }
  551.   else if (tag == DT_DocumentIDChunk)
  552.     { Boolean readParagraphs = false; /* for cleanup */
  553.       tag = peekTag(buf);
  554.       if (tag == DT_TYPE)    /* XXX depends on DT_TYPE != CT_FOO */
  555.     buf = readString(&((*doc)->Type),buf);
  556.       buf = readNum(&((*doc)->ChunkCode),buf);
  557.       switch ((*doc)->ChunkCode)
  558.     { case CT_byte:
  559.       case CT_line:
  560.         buf = readNum(&((*doc)->ChunkStart.Pos),buf);
  561.         buf = readNum(&((*doc)->ChunkEnd.Pos),buf);
  562.         break;
  563.       case CT_paragraph:
  564.         readParagraphs = true;
  565.         buf = readAny(&((*doc)->ChunkStart.ID),buf);
  566.         buf = readAny(&((*doc)->ChunkEnd.ID),buf);
  567.         break;
  568.       default:
  569.         freeAny((*doc)->DocumentID);
  570.         if (readParagraphs)
  571.           { freeAny((*doc)->ChunkStart.ID);
  572.         freeAny((*doc)->ChunkEnd.ID);
  573.           }
  574.         s_free(doc);
  575.         REPORT_READ_ERROR(buf);
  576.         break;
  577.       }
  578.     }
  579.   else
  580.     { freeAny((*doc)->DocumentID);
  581.       s_free(*doc);
  582.       REPORT_READ_ERROR(buf);
  583.     }
  584.   return(buf);  
  585. }
  586.  
  587. /*----------------------------------------------------------------------*/
  588.  
  589. char* 
  590. writeSearchInfo(query,buffer,len)
  591. SearchAPDU* query;
  592. char* buffer;
  593. long* len;
  594.  
  595. /* write out a WAIS query (type 1 or 3) */
  596. {
  597.   if (strcmp(query->QueryType,QT_TextRetrievalQuery) == 0)
  598.     { return(writeAny((any*)query->Query,DT_Query,buffer,len));
  599.     }
  600.   else
  601.     { unsigned long header_len = userInfoTagSize(DT_UserInformationLength,
  602.                          DefWAISSearchSize); 
  603.       char* buf = buffer + header_len;
  604.       WAISSearch* info = (WAISSearch*)query->Query;
  605.       unsigned long size;
  606.       long i;
  607.   
  608.       RESERVE_SPACE_FOR_WAIS_HEADER(len);
  609.        
  610.       buf = writeString(info->SeedWords,DT_SeedWords,buf,len);
  611.  
  612.       if (info->Docs != NULL)
  613.       { for (i = 0; info->Docs[i] != NULL; i++)
  614.       { buf = writeDocObj(info->Docs[i],buf,len);
  615.       }
  616.     }
  617.    
  618.       /* XXX text list */
  619.  
  620.       buf = writeNum(info->DateFactor,DT_DateFactor,buf,len);
  621.       buf = writeString(info->BeginDateRange,DT_BeginDateRange,buf,len);
  622.       buf = writeString(info->EndDateRange,DT_EndDateRange,buf,len);
  623.       buf = writeNum(info->MaxDocumentsRetrieved,DT_MaxDocumentsRetrieved,buf,len);
  624.   
  625.       /* now write the header and size */
  626.       size = buf - buffer; 
  627.       buf = writeUserInfoHeader(DT_UserInformationLength,size,header_len,buffer,len);
  628.    
  629.       return(buf);
  630.     }
  631. }
  632.  
  633. /*----------------------------------------------------------------------*/
  634.  
  635. char* 
  636. readSearchInfo(info,buffer)
  637. void** info;
  638. char* buffer;
  639.  
  640. /* read a WAIS query (type 1 or 3) */
  641. {
  642.   data_tag type = peekTag(buffer);
  643.   if (type == DT_Query)        /* this is a type 1 query */
  644.     { char* buf = buffer;
  645.       any* query = NULL;
  646.       buf = readAny(&query,buf);
  647.       *info = (void *)query;
  648.       return(buf);
  649.     }
  650.   else                /* a type 3 query */
  651.     { char* buf = buffer;
  652.       unsigned long size; 
  653.       unsigned long headerSize;
  654.       data_tag tag;
  655.       char* seedWords = NULL;
  656.       char* beginDateRange = NULL;
  657.       char* endDateRange = NULL;
  658.       long dateFactor,maxDocsRetrieved;
  659.       char** textList = NULL; 
  660.       DocObj** docIDs = NULL;
  661.       DocObj* doc = NULL;
  662.       long docs = 0;
  663.       long i;
  664.       void* ptr = NULL;
  665.  
  666.       dateFactor = maxDocsRetrieved = UNUSED;
  667.   
  668.       buf = readUserInfoHeader(&tag,&size,buf);
  669.       headerSize = buf - buffer;
  670.   
  671.       while (buf < (buffer + size + headerSize))
  672.     { data_tag tag = peekTag(buf);
  673.       switch (tag)
  674.         { case DT_SeedWords:
  675.         buf = readString(&seedWords,buf);
  676.         break;
  677.           case DT_DocumentID:
  678.           case DT_DocumentIDChunk:
  679.         if (docIDs == NULL) /* create a new doc list */
  680.           { docIDs = (DocObj**)s_malloc((size_t)sizeof(DocObj*) * 2);
  681.           }
  682.         else        /* grow the doc list */
  683.           { docIDs = (DocObj**)s_realloc((char*)docIDs,(size_t)(sizeof(DocObj*) * (docs + 2)));
  684.           }
  685.         buf = readDocObj(&doc,buf);
  686.         if (buf == NULL) 
  687.           { s_free(seedWords);
  688.             s_free(beginDateRange);
  689.             s_free(endDateRange);
  690.             if (docIDs != NULL)
  691.               for (i = 0,ptr = (void *)docIDs[i]; ptr != NULL; ptr = (void *)docIDs[++i])
  692.             freeDocObj((DocObj*)ptr);
  693.             s_free(docIDs);
  694.             /* XXX should also free textlist when it is fully defined */
  695.           }
  696.         RETURN_ON_NULL(buf);
  697.         docIDs[docs++] = doc; /* put it in the list */
  698.         docIDs[docs] = NULL;
  699.         break;
  700.           case DT_TextList:
  701.         /* XXX */
  702.         break;
  703.           case DT_DateFactor:
  704.         buf = readNum(&dateFactor,buf);
  705.         break;
  706.           case DT_BeginDateRange:
  707.         buf = readString(&beginDateRange,buf);
  708.         break;
  709.           case DT_EndDateRange:
  710.         buf = readString(&endDateRange,buf);
  711.         break;
  712.           case DT_MaxDocumentsRetrieved:
  713.         buf = readNum(&maxDocsRetrieved,buf);
  714.         break;
  715.           default:
  716.         s_free(seedWords);
  717.         s_free(beginDateRange);
  718.         s_free(endDateRange);
  719.         if (docIDs != NULL)
  720.           for (i = 0,ptr = (void *)docIDs[i]; ptr != NULL; ptr = (void *)docIDs[++i])
  721.             freeDocObj((DocObj*)ptr);
  722.         s_free(docIDs);
  723.         /* XXX should also free textlist when it is fully defined */
  724.         REPORT_READ_ERROR(buf);
  725.         break;
  726.           }
  727.     }
  728.         
  729.       *info = (void *)makeWAISSearch(seedWords,docIDs,textList,
  730.                      dateFactor,beginDateRange,endDateRange,
  731.                      maxDocsRetrieved);
  732.       return(buf);
  733.     }
  734. }
  735.  
  736. /*----------------------------------------------------------------------*/
  737.  
  738. WAISDocumentHeader*
  739. makeWAISDocumentHeader(docID,
  740.                versionNumber,
  741.                score,
  742.                bestMatch,
  743.                docLen,
  744.                lines,
  745.                types,
  746.                source,
  747.                date,
  748.                headline,
  749.                originCity)
  750. any* docID;
  751. long versionNumber;
  752. long score;
  753. long bestMatch;
  754. long docLen;
  755. long lines;
  756. char** types;
  757. char* source;
  758. char* date;
  759. char* headline;
  760. char* originCity;
  761.  
  762. /* construct a standard document header, note that no fields are copied!
  763.    if the application needs to save these fields, it should copy them,
  764.    or set the field in this object to NULL before freeing it.
  765.  */
  766. {
  767.   WAISDocumentHeader* header = 
  768.     (WAISDocumentHeader*)s_malloc((size_t)sizeof(WAISDocumentHeader));
  769.  
  770.   header->DocumentID = docID;
  771.   header->VersionNumber = versionNumber;
  772.   header->Score = score;
  773.   header->BestMatch = bestMatch;
  774.   header->DocumentLength = docLen;
  775.   header->Lines = lines;
  776.   header->Types = types;
  777.   header->Source = source;
  778.   header->Date = date;
  779.   header->Headline = headline;
  780.   header->OriginCity = originCity;
  781.   
  782.   return(header);
  783. }
  784.  
  785. /*----------------------------------------------------------------------*/
  786.  
  787. void
  788. freeWAISDocumentHeader(header)
  789. WAISDocumentHeader* header;
  790.  
  791. {
  792.   freeAny(header->DocumentID);
  793.   doList((void**)header->Types,fs_free); /* can't use the macro here ! */
  794.   s_free(header->Types);
  795.   s_free(header->Source);
  796.   s_free(header->Date);
  797.   s_free(header->Headline);
  798.   s_free(header->OriginCity);
  799.   s_free(header);
  800. }
  801.  
  802. /*----------------------------------------------------------------------*/
  803.  
  804. char*
  805. writeWAISDocumentHeader(header,buffer,len)
  806. WAISDocumentHeader* header;
  807. char* buffer;
  808. long* len;
  809. {
  810.   unsigned long header_len = userInfoTagSize(DT_DocumentHeaderGroup ,
  811.                          DefWAISDocHeaderSize);
  812.   char* buf = buffer + header_len;
  813.   unsigned long size;
  814.   
  815.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  816.    
  817.   buf = writeAny(header->DocumentID,DT_DocumentID,buf,len);
  818.   buf = writeNum(header->VersionNumber,DT_VersionNumber,buf,len);
  819.   buf = writeNum(header->Score,DT_Score,buf,len);
  820.   buf = writeNum(header->BestMatch,DT_BestMatch,buf,len);
  821.   buf = writeNum(header->DocumentLength,DT_DocumentLength,buf,len);
  822.   buf = writeNum(header->Lines,DT_Lines,buf,len);
  823.   if (header->Types != NULL)
  824.     { long size;
  825.       char* ptr = NULL;
  826.       long i;
  827.       buf = writeTag(DT_TYPE_BLOCK,buf,len);
  828.       for (i = 0,size = 0,ptr = header->Types[i]; ptr != NULL; ptr = header->Types[++i])
  829.     { long typeSize = strlen(ptr);
  830.       size += writtenTagSize(DT_TYPE);
  831.       size += writtenCompressedIntSize(typeSize);
  832.       size += typeSize; 
  833.     }
  834.       buf = writeCompressedInteger((unsigned long)size,buf,len);
  835.       for (i = 0,ptr = header->Types[i]; ptr != NULL; ptr = header->Types[++i])
  836.     buf = writeString(ptr,DT_TYPE,buf,len);
  837.     }
  838.   buf = writeString(header->Source,DT_Source,buf,len);
  839.   buf = writeString(header->Date,DT_Date,buf,len);
  840.   buf = writeString(header->Headline,DT_Headline,buf,len);
  841.   buf = writeString(header->OriginCity,DT_OriginCity,buf,len);
  842.   
  843.   /* now write the header and size */
  844.   size = buf - buffer; 
  845.   buf = writeUserInfoHeader(DT_DocumentHeaderGroup,size,header_len,buffer,len);
  846.  
  847.   return(buf);
  848. }
  849.  
  850. /*----------------------------------------------------------------------*/
  851.  
  852. char*
  853. readWAISDocumentHeader(header,buffer)
  854. WAISDocumentHeader** header;
  855. char* buffer;
  856. {
  857.   char* buf = buffer;
  858.   unsigned long size; 
  859.   unsigned long headerSize;
  860.   data_tag tag;
  861.   any* docID = NULL;
  862.   long versionNumber,score,bestMatch,docLength,lines;
  863.   char** types = NULL;
  864.   char *source = NULL;
  865.   char *date = NULL;
  866.   char *headline = NULL;
  867.   char *originCity = NULL;
  868.   
  869.   versionNumber = score = bestMatch = docLength = lines = UNUSED;
  870.   
  871.   buf = readUserInfoHeader(&tag,&size,buf);
  872.   headerSize = buf - buffer;
  873.     
  874.   while (buf < (buffer + size + headerSize))
  875.     { data_tag tag = peekTag(buf);
  876.       switch (tag)
  877.     { case DT_DocumentID:
  878.         buf = readAny(&docID,buf);
  879.         break;
  880.       case DT_VersionNumber:
  881.         buf = readNum(&versionNumber,buf);
  882.         break;
  883.       case DT_Score:
  884.         buf = readNum(&score,buf);
  885.         break;
  886.       case DT_BestMatch:
  887.         buf = readNum(&bestMatch,buf);
  888.         break;
  889.       case DT_DocumentLength:
  890.         buf = readNum(&docLength,buf);
  891.         break;
  892.       case DT_Lines:
  893.         buf = readNum(&lines,buf);
  894.         break;
  895.       case DT_TYPE_BLOCK:
  896.         { unsigned long size = -1;
  897.           long numTypes = 0;
  898.           buf = readTag(&tag,buf);
  899.           buf = readCompressedInteger(&size,buf);
  900.           while (size > 0)
  901.         { char* type = NULL;
  902.           char* originalBuf = buf;
  903.           buf = readString(&type,buf);
  904.           types = (char**)s_realloc(types,(size_t)(sizeof(char*) * (numTypes + 2)));
  905.           types[numTypes++] = type;
  906.           types[numTypes] = NULL;
  907.           size -= (buf - originalBuf);
  908.         }
  909.         }
  910.       case DT_Source:
  911.         buf = readString(&source,buf);
  912.         break;
  913.       case DT_Date:
  914.         buf = readString(&date,buf);
  915.         break;
  916.       case DT_Headline:
  917.         buf = readString(&headline,buf);
  918.         break;
  919.       case DT_OriginCity:
  920.         buf = readString(&originCity,buf);
  921.         break;
  922.       default:
  923.         freeAny(docID);
  924.         s_free(source);
  925.         s_free(date);
  926.         s_free(headline);
  927.         s_free(originCity);
  928.         REPORT_READ_ERROR(buf);
  929.         break;
  930.       }
  931.     }
  932.         
  933.   *header = makeWAISDocumentHeader(docID,versionNumber,score,bestMatch,
  934.                    docLength,lines,types,source,date,headline,
  935.                    originCity);
  936.   return(buf);
  937. }
  938.  
  939. /*----------------------------------------------------------------------*/
  940.  
  941. WAISDocumentShortHeader*
  942. makeWAISDocumentShortHeader(docID,
  943.                 versionNumber,
  944.                 score,
  945.                 bestMatch,
  946.                 docLen,
  947.                 lines)
  948. any* docID;
  949. long versionNumber;
  950. long score;
  951. long bestMatch;
  952. long docLen;
  953. long lines;
  954. /* construct a short document header, note that no fields are copied!
  955.    if the application needs to save these fields, it should copy them,
  956.    or set the field in this object to NULL before freeing it.
  957.  */
  958. {
  959.   WAISDocumentShortHeader* header = 
  960.     (WAISDocumentShortHeader*)s_malloc((size_t)sizeof(WAISDocumentShortHeader));
  961.  
  962.   header->DocumentID = docID;
  963.   header->VersionNumber = versionNumber;
  964.   header->Score = score;
  965.   header->BestMatch = bestMatch;
  966.   header->DocumentLength = docLen;
  967.   header->Lines = lines;
  968.   
  969.   return(header);
  970. }
  971.  
  972. /*----------------------------------------------------------------------*/
  973.  
  974. void
  975. freeWAISDocumentShortHeader(header)
  976. WAISDocumentShortHeader* header;
  977. {
  978.   freeAny(header->DocumentID);
  979.   s_free(header);
  980. }
  981.  
  982. /*----------------------------------------------------------------------*/
  983.  
  984. char*
  985. writeWAISDocumentShortHeader(header,buffer,len)
  986. WAISDocumentShortHeader* header;
  987. char* buffer;
  988. long* len;
  989. {
  990.   unsigned long header_len = userInfoTagSize(DT_DocumentShortHeaderGroup ,
  991.                          DefWAISShortHeaderSize);
  992.   char* buf = buffer + header_len;
  993.   unsigned long size;
  994.   
  995.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  996.    
  997.   buf = writeAny(header->DocumentID,DT_DocumentID,buf,len);
  998.   buf = writeNum(header->VersionNumber,DT_VersionNumber,buf,len);
  999.   buf = writeNum(header->Score,DT_Score,buf,len);
  1000.   buf = writeNum(header->BestMatch,DT_BestMatch,buf,len);
  1001.   buf = writeNum(header->DocumentLength,DT_DocumentLength,buf,len);
  1002.   buf = writeNum(header->Lines,DT_Lines,buf,len);
  1003.   
  1004.   /* now write the header and size */
  1005.   size = buf - buffer; 
  1006.   buf = writeUserInfoHeader(DT_DocumentShortHeaderGroup,size,header_len,buffer,len);
  1007.  
  1008.   return(buf);
  1009. }
  1010.  
  1011. /*----------------------------------------------------------------------*/
  1012.  
  1013. char*
  1014. readWAISDocumentShortHeader(header,buffer)
  1015. WAISDocumentShortHeader** header;
  1016. char* buffer;
  1017. {
  1018.   char* buf = buffer;
  1019.   unsigned long size; 
  1020.   unsigned long headerSize;
  1021.   data_tag tag;
  1022.   any* docID = NULL;
  1023.   long versionNumber,score,bestMatch,docLength,lines;
  1024.   
  1025.   versionNumber = score = bestMatch = docLength = lines = UNUSED;
  1026.   
  1027.   buf = readUserInfoHeader(&tag,&size,buf);
  1028.   headerSize = buf - buffer;
  1029.     
  1030.   while (buf < (buffer + size + headerSize))
  1031.     { data_tag tag = peekTag(buf);
  1032.       switch (tag)
  1033.     { case DT_DocumentID:
  1034.         buf = readAny(&docID,buf);
  1035.         break;
  1036.       case DT_VersionNumber:
  1037.         buf = readNum(&versionNumber,buf);
  1038.         break;
  1039.       case DT_Score:
  1040.         buf = readNum(&score,buf);
  1041.         break;
  1042.       case DT_BestMatch:
  1043.         buf = readNum(&bestMatch,buf);
  1044.         break;
  1045.       case DT_DocumentLength:
  1046.         buf = readNum(&docLength,buf);
  1047.         break;
  1048.       case DT_Lines:
  1049.         buf = readNum(&lines,buf);
  1050.         break;
  1051.       default:
  1052.         freeAny(docID);
  1053.         REPORT_READ_ERROR(buf);
  1054.         break;
  1055.       }
  1056.     }
  1057.         
  1058.   *header = makeWAISDocumentShortHeader(docID,versionNumber,score,bestMatch,
  1059.                     docLength,lines);
  1060.   return(buf);
  1061. }
  1062.  
  1063. /*----------------------------------------------------------------------*/
  1064.  
  1065. WAISDocumentLongHeader*
  1066. makeWAISDocumentLongHeader(docID,
  1067.                versionNumber,
  1068.                score,
  1069.                bestMatch,
  1070.                docLen,
  1071.                lines,
  1072.                types,
  1073.                source,
  1074.                date,
  1075.                headline,
  1076.                originCity,
  1077.                stockCodes,
  1078.                companyCodes,
  1079.                industryCodes)
  1080. any* docID;
  1081. long versionNumber;
  1082. long score;
  1083. long bestMatch;
  1084. long docLen;
  1085. long lines;
  1086. char** types;
  1087. char* source;
  1088. char* date;
  1089. char* headline;
  1090. char* originCity;
  1091. char* stockCodes;
  1092. char* companyCodes;
  1093. char* industryCodes;
  1094. /* construct a long document header, note that no fields are copied!
  1095.    if the application needs to save these fields, it should copy them,
  1096.    or set the field in this object to NULL before freeing it.
  1097.  */
  1098. {
  1099.   WAISDocumentLongHeader* header = 
  1100.     (WAISDocumentLongHeader*)s_malloc((size_t)sizeof(WAISDocumentLongHeader));
  1101.  
  1102.   header->DocumentID = docID;
  1103.   header->VersionNumber = versionNumber;
  1104.   header->Score = score;
  1105.   header->BestMatch = bestMatch;
  1106.   header->DocumentLength = docLen;
  1107.   header->Lines = lines;
  1108.   header->Types = types;
  1109.   header->Source = source;
  1110.   header->Date = date;
  1111.   header->Headline = headline;
  1112.   header->OriginCity = originCity;
  1113.   header->StockCodes = stockCodes;
  1114.   header->CompanyCodes = companyCodes;
  1115.   header->IndustryCodes = industryCodes;
  1116.   
  1117.   return(header);
  1118. }
  1119.  
  1120. /*----------------------------------------------------------------------*/
  1121.  
  1122. void
  1123. freeWAISDocumentLongHeader(header)
  1124. WAISDocumentLongHeader* header;
  1125. {
  1126.   freeAny(header->DocumentID);
  1127.   doList((void**)header->Types,fs_free); /* can't use the macro here! */
  1128.   s_free(header->Source);
  1129.   s_free(header->Date);
  1130.   s_free(header->Headline);
  1131.   s_free(header->OriginCity);
  1132.   s_free(header->StockCodes);
  1133.   s_free(header->CompanyCodes);
  1134.   s_free(header->IndustryCodes);
  1135.   s_free(header);
  1136. }
  1137.  
  1138. /*----------------------------------------------------------------------*/
  1139.  
  1140. char*
  1141. writeWAISDocumentLongHeader(header,buffer,len)
  1142. WAISDocumentLongHeader* header;
  1143. char* buffer;
  1144. long* len;
  1145. {
  1146.   unsigned long header_len = userInfoTagSize(DT_DocumentLongHeaderGroup ,
  1147.                          DefWAISLongHeaderSize);
  1148.   char* buf = buffer + header_len;
  1149.   unsigned long size;
  1150.   
  1151.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  1152.    
  1153.   buf = writeAny(header->DocumentID,DT_DocumentID,buf,len);
  1154.   buf = writeNum(header->VersionNumber,DT_VersionNumber,buf,len);
  1155.   buf = writeNum(header->Score,DT_Score,buf,len);
  1156.   buf = writeNum(header->BestMatch,DT_BestMatch,buf,len);
  1157.   buf = writeNum(header->DocumentLength,DT_DocumentLength,buf,len);
  1158.   buf = writeNum(header->Lines,DT_Lines,buf,len);
  1159.   if (header->Types != NULL)
  1160.     { long size;
  1161.       char* ptr = NULL;
  1162.       long i;
  1163.       buf = writeTag(DT_TYPE_BLOCK,buf,len);
  1164.       for (i = 0,size = 0,ptr = header->Types[i]; ptr != NULL; ptr = header->Types[++i])
  1165.     { long typeSize = strlen(ptr);
  1166.       size += writtenTagSize(DT_TYPE);
  1167.       size += writtenCompressedIntSize(typeSize);
  1168.       size += typeSize; 
  1169.     }
  1170.       buf = writeCompressedInteger((unsigned long)size,buf,len);
  1171.       for (i = 0,ptr = header->Types[i]; ptr != NULL; ptr = header->Types[++i])
  1172.     buf = writeString(ptr,DT_TYPE,buf,len);
  1173.     }
  1174.   buf = writeString(header->Source,DT_Source,buf,len);
  1175.   buf = writeString(header->Date,DT_Date,buf,len);
  1176.   buf = writeString(header->Headline,DT_Headline,buf,len);
  1177.   buf = writeString(header->OriginCity,DT_OriginCity,buf,len);
  1178.   buf = writeString(header->StockCodes,DT_StockCodes,buf,len);
  1179.   buf = writeString(header->CompanyCodes,DT_CompanyCodes,buf,len);
  1180.   buf = writeString(header->IndustryCodes,DT_IndustryCodes,buf,len);
  1181.   
  1182.   /* now write the header and size */
  1183.   size = buf - buffer; 
  1184.   buf = writeUserInfoHeader(DT_DocumentLongHeaderGroup,size,header_len,buffer,len);
  1185.  
  1186.   return(buf);
  1187. }
  1188.  
  1189. /*----------------------------------------------------------------------*/
  1190.  
  1191. char*
  1192. readWAISDocumentLongHeader(header,buffer)
  1193. WAISDocumentLongHeader** header;
  1194. char* buffer;
  1195. {
  1196.   char* buf = buffer;
  1197.   unsigned long size; 
  1198.   unsigned long headerSize;
  1199.   data_tag tag;
  1200.   any* docID;
  1201.   long versionNumber,score,bestMatch,docLength,lines;
  1202.   char **types;
  1203.   char *source,*date,*headline,*originCity,*stockCodes,*companyCodes,*industryCodes;
  1204.   
  1205.   docID = NULL;
  1206.   versionNumber = score = bestMatch = docLength = lines = UNUSED;
  1207.   types = NULL;
  1208.   source = date = headline = originCity = stockCodes = companyCodes = industryCodes = NULL;
  1209.   
  1210.   buf = readUserInfoHeader(&tag,&size,buf);
  1211.   headerSize = buf - buffer;
  1212.     
  1213.   while (buf < (buffer + size + headerSize))
  1214.     { data_tag tag = peekTag(buf);
  1215.       switch (tag)
  1216.     { case DT_DocumentID:
  1217.         buf = readAny(&docID,buf);
  1218.         break;
  1219.       case DT_VersionNumber:
  1220.         buf = readNum(&versionNumber,buf);
  1221.         break;
  1222.       case DT_Score:
  1223.         buf = readNum(&score,buf);
  1224.         break;
  1225.       case DT_BestMatch:
  1226.         buf = readNum(&bestMatch,buf);
  1227.         break;
  1228.       case DT_DocumentLength:
  1229.         buf = readNum(&docLength,buf);
  1230.         break;
  1231.       case DT_Lines:
  1232.         buf = readNum(&lines,buf);
  1233.         break;
  1234.       case DT_TYPE_BLOCK:
  1235.         { unsigned long size = -1;
  1236.           long numTypes = 0;
  1237.           buf = readTag(&tag,buf);
  1238.           readCompressedInteger(&size,buf);
  1239.           while (size > 0)
  1240.         { char* type = NULL;
  1241.           char* originalBuf = buf;
  1242.           buf = readString(&type,buf);
  1243.           types = (char**)s_realloc(types,(size_t)(sizeof(char*) * (numTypes + 2)));
  1244.           types[numTypes++] = type;
  1245.           types[numTypes] = NULL;
  1246.           size -= (buf - originalBuf);
  1247.         }
  1248.         }
  1249.       case DT_Source:
  1250.         buf = readString(&source,buf);
  1251.         break;
  1252.       case DT_Date:
  1253.         buf = readString(&date,buf);
  1254.         break;
  1255.       case DT_Headline:
  1256.         buf = readString(&headline,buf);
  1257.         break;
  1258.       case DT_OriginCity:
  1259.         buf = readString(&originCity,buf);
  1260.         break;
  1261.       case DT_StockCodes:
  1262.         buf = readString(&stockCodes,buf);
  1263.         break;
  1264.       case DT_CompanyCodes:
  1265.         buf = readString(&companyCodes,buf);
  1266.         break;
  1267.       case DT_IndustryCodes:
  1268.         buf = readString(&industryCodes,buf);
  1269.         break;
  1270.       default:
  1271.         freeAny(docID);
  1272.         s_free(source);
  1273.         s_free(date);
  1274.         s_free(headline);
  1275.         s_free(originCity);
  1276.         s_free(stockCodes);
  1277.         s_free(companyCodes);
  1278.         s_free(industryCodes);
  1279.         REPORT_READ_ERROR(buf);
  1280.         break;
  1281.       }
  1282.     }
  1283.         
  1284.   *header = makeWAISDocumentLongHeader(docID,versionNumber,score,bestMatch,
  1285.                        docLength,lines,types,source,date,headline,
  1286.                        originCity,stockCodes,companyCodes,
  1287.                        industryCodes);
  1288.   return(buf);
  1289. }
  1290.  
  1291. /*----------------------------------------------------------------------*/
  1292.  
  1293. WAISSearchResponse*
  1294. makeWAISSearchResponse(seedWordsUsed,
  1295.                docHeaders,
  1296.                shortHeaders,
  1297.                longHeaders,
  1298.                text,
  1299.                headlines,
  1300.                codes,
  1301.                diagnostics)
  1302. char* seedWordsUsed;
  1303. WAISDocumentHeader** docHeaders;
  1304. WAISDocumentShortHeader** shortHeaders;
  1305. WAISDocumentLongHeader** longHeaders;
  1306. WAISDocumentText** text;
  1307. WAISDocumentHeadlines** headlines;
  1308. WAISDocumentCodes** codes;
  1309. diagnosticRecord** diagnostics;
  1310. {
  1311.   WAISSearchResponse* response = (WAISSearchResponse*)s_malloc((size_t)sizeof(WAISSearchResponse));
  1312.   
  1313.   response->SeedWordsUsed = seedWordsUsed;
  1314.   response->DocHeaders = docHeaders;
  1315.   response->ShortHeaders = shortHeaders;
  1316.   response->LongHeaders = longHeaders;
  1317.   response->Text = text;
  1318.   response->Headlines = headlines;
  1319.   response->Codes = codes;
  1320.   response->Diagnostics = diagnostics;
  1321.   
  1322.   return(response);
  1323. }
  1324.  
  1325. /*----------------------------------------------------------------------*/
  1326.  
  1327. void
  1328. freeWAISSearchResponse(response)
  1329. WAISSearchResponse* response;
  1330. {
  1331.   void* ptr = NULL;
  1332.   long i;
  1333.  
  1334.   s_free(response->SeedWordsUsed);
  1335.  
  1336.   if (response->DocHeaders != NULL)
  1337.     for (i = 0,ptr = (void *)response->DocHeaders[i]; ptr != NULL; ptr = (void *)response->DocHeaders[++i])
  1338.       freeWAISDocumentHeader((WAISDocumentHeader*)ptr);
  1339.   s_free(response->DocHeaders);
  1340.    
  1341.   if (response->ShortHeaders != NULL)
  1342.     for (i = 0,ptr = (void *)response->ShortHeaders[i]; ptr != NULL; ptr = (void *)response->ShortHeaders[++i])
  1343.       freeWAISDocumentShortHeader((WAISDocumentShortHeader*)ptr);
  1344.   s_free(response->ShortHeaders);
  1345.    
  1346.   if (response->LongHeaders != NULL)
  1347.     for (i = 0,ptr = (void *)response->LongHeaders[i]; ptr != NULL; ptr = (void *)response->LongHeaders[++i])
  1348.       freeWAISDocumentLongHeader((WAISDocumentLongHeader*)ptr);
  1349.   s_free(response->LongHeaders);
  1350.    
  1351.   if (response->Text != NULL)
  1352.     for (i = 0,ptr = (void *)response->Text[i]; ptr != NULL; ptr = (void *)response->Text[++i])
  1353.       freeWAISDocumentText((WAISDocumentText*)ptr);
  1354.   s_free(response->Text);
  1355.    
  1356.   if (response->Headlines != NULL)
  1357.     for (i = 0,ptr = (void *)response->Headlines[i]; ptr != NULL; ptr = (void *)response->Headlines[++i])
  1358.       freeWAISDocumentHeadlines((WAISDocumentHeadlines*)ptr);
  1359.   s_free(response->Headlines);
  1360.    
  1361.   if (response->Codes != NULL)
  1362.     for (i = 0,ptr = (void *)response->Codes[i]; ptr != NULL; ptr = (void *)response->Codes[++i])
  1363.       freeWAISDocumentCodes((WAISDocumentCodes*)ptr);
  1364.   s_free(response->Codes);
  1365.    
  1366.   if (response->Diagnostics != NULL)
  1367.     for (i = 0,ptr = (void *)response->Diagnostics[i]; ptr != NULL; ptr = (void *)response->Diagnostics[++i])
  1368.       freeDiag((diagnosticRecord*)ptr);
  1369.   s_free(response->Diagnostics);
  1370.   
  1371.   s_free(response);
  1372. }
  1373.  
  1374. /*----------------------------------------------------------------------*/
  1375.  
  1376. char* 
  1377. writeSearchResponseInfo(query,buffer,len)
  1378. SearchResponseAPDU* query;
  1379. char* buffer;
  1380. long* len;
  1381. {
  1382.   unsigned long header_len = userInfoTagSize(DT_UserInformationLength,
  1383.                          DefWAISSearchResponseSize);
  1384.   char* buf = buffer + header_len;
  1385.   WAISSearchResponse* info = (WAISSearchResponse*)query->DatabaseDiagnosticRecords;
  1386.   unsigned long size;
  1387.   void* header = NULL;
  1388.   long i;
  1389.   
  1390.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  1391.   
  1392.   buf = writeString(info->SeedWordsUsed,DT_SeedWordsUsed,buf,len);
  1393.   
  1394.   /* write out all the headers */
  1395.   if (info->DocHeaders != NULL)
  1396.     { for (i = 0,header = (void *)info->DocHeaders[i]; header != NULL; header = (void *)info->DocHeaders[++i])
  1397.     buf = writeWAISDocumentHeader((WAISDocumentHeader*)header,buf,len);
  1398.       }
  1399.    
  1400.   if (info->ShortHeaders != NULL)
  1401.     { for (i = 0,header = (void *)info->ShortHeaders[i]; header != NULL; header = (void *)info->ShortHeaders[++i])
  1402.     buf = writeWAISDocumentShortHeader((WAISDocumentShortHeader*)header,buf,len);
  1403.       }
  1404.  
  1405.   if (info->LongHeaders != NULL)
  1406.     { for (i = 0,header = (void *)info->LongHeaders[i]; header != NULL; header = (void *)info->LongHeaders[++i])
  1407.     buf = writeWAISDocumentLongHeader((WAISDocumentLongHeader*)header,buf,len);
  1408.       }
  1409.  
  1410.   if (info->Text != NULL)
  1411.     { for (i = 0,header = (void *)info->Text[i]; header != NULL; header = (void *)info->Text[++i])
  1412.     buf = writeWAISDocumentText((WAISDocumentText*)header,buf,len);
  1413.       }
  1414.  
  1415.   if (info->Headlines != NULL)
  1416.     { for (i = 0,header = (void *)info->Headlines[i]; header != NULL; header = (void *)info->Headlines[++i])
  1417.     buf = writeWAISDocumentHeadlines((WAISDocumentHeadlines*)header,buf,len);
  1418.       }
  1419.  
  1420.   if (info->Codes != NULL)
  1421.     { for (i = 0,header = (void *)info->Codes[i]; header != NULL;header = (void *)info->Codes[++i])
  1422.     buf = writeWAISDocumentCodes((WAISDocumentCodes*)header,buf,len);
  1423.       }
  1424.  
  1425.   if (info->Diagnostics != NULL)
  1426.     { for (i = 0, header = (void *)info->Diagnostics[i]; header != NULL; header = (void *)info->Diagnostics[++i])
  1427.     buf = writeDiag((diagnosticRecord*)header,buf,len);
  1428.       }
  1429.    
  1430.   /* now write the header and size */
  1431.   size = buf - buffer; 
  1432.   buf = writeUserInfoHeader(DT_UserInformationLength,size,header_len,buffer,len);
  1433.   
  1434.   return(buf);
  1435. }
  1436.  
  1437. /*----------------------------------------------------------------------*/
  1438.  
  1439. static void
  1440. cleanUpWaisSearchResponse _AP((char* buf,char* seedWordsUsed,
  1441.                    WAISDocumentHeader** docHeaders,
  1442.                    WAISDocumentShortHeader** shortHeaders,
  1443.                    WAISDocumentLongHeader** longHeaders,
  1444.                    WAISDocumentText** text,
  1445.                    WAISDocumentHeadlines** headlines,
  1446.                    WAISDocumentCodes** codes,
  1447.                    diagnosticRecord**diags));
  1448.  
  1449. static void
  1450. cleanUpWaisSearchResponse (buf,seedWordsUsed,docHeaders,shortHeaders,
  1451.                longHeaders,text,headlines,codes,diags)
  1452. char* buf;
  1453. char* seedWordsUsed;
  1454. WAISDocumentHeader** docHeaders;
  1455. WAISDocumentShortHeader** shortHeaders;
  1456. WAISDocumentLongHeader** longHeaders;
  1457. WAISDocumentText** text;
  1458. WAISDocumentHeadlines** headlines;
  1459. WAISDocumentCodes** codes;
  1460. diagnosticRecord** diags;
  1461. /* if buf is NULL, we have just gotten a read error, and need to clean up 
  1462.    any state we have built.  If not, then everything is going fine, and
  1463.    we should just hang loose
  1464.  */
  1465. {
  1466.   void* ptr = NULL;
  1467.   long i;
  1468.  
  1469.   if (buf == NULL)                        
  1470.    { s_free(seedWordsUsed);                
  1471.      if (docHeaders != NULL)                
  1472.        for (i = 0,ptr = (void *)docHeaders[i]; ptr != NULL; 
  1473.         ptr = (void *)docHeaders[++i])        
  1474.      freeWAISDocumentHeader((WAISDocumentHeader*)ptr);    
  1475.      s_free(docHeaders);                
  1476.      if (shortHeaders != NULL)    
  1477.        for (i = 0,ptr = (void *)shortHeaders[i]; ptr != NULL;
  1478.         ptr = (void *)shortHeaders[++i])    
  1479.      freeWAISDocumentShortHeader((WAISDocumentShortHeader*)ptr);
  1480.      s_free(shortHeaders);                        
  1481.      if (longHeaders != NULL)                
  1482.        for (i = 0,ptr = (void *)longHeaders[i]; ptr != NULL; 
  1483.         ptr = (void *)longHeaders[++i])    
  1484.      freeWAISDocumentLongHeader((WAISDocumentLongHeader*)ptr);
  1485.      s_free(longHeaders);                
  1486.      if (text != NULL)                    
  1487.        for (i = 0,ptr = (void *)text[i]; ptr != NULL; ptr = (void *)text[++i])
  1488.      freeWAISDocumentText((WAISDocumentText*)ptr);    
  1489.      s_free(text);                    
  1490.      if (headlines != NULL)                    
  1491.        for (i = 0,ptr = (void *)headlines[i]; ptr != NULL;
  1492.         ptr = (void *)headlines[++i])        
  1493.      freeWAISDocumentHeadlines((WAISDocumentHeadlines*)ptr);    
  1494.      s_free(headlines);                        
  1495.      if (codes != NULL)                     
  1496.        for (i = 0,ptr = (void *)codes[i]; ptr != NULL; 
  1497.         ptr = (void *)codes[++i])                
  1498.      freeWAISDocumentCodes((WAISDocumentCodes*)ptr);     
  1499.      s_free(codes);                    
  1500.      if (diags != NULL)                          
  1501.        for (i = 0,ptr = (void *)diags[i]; ptr != NULL; 
  1502.         ptr = (void *)diags[++i])     
  1503.      freeDiag((diagnosticRecord*)ptr);         
  1504.      s_free(diags);
  1505.    }
  1506. }
  1507.  
  1508. /*----------------------------------------------------------------------*/
  1509.  
  1510. char*
  1511. readSearchResponseInfo(info,buffer)
  1512. void** info;
  1513. char* buffer;
  1514. {
  1515.   char* buf = buffer;
  1516.   unsigned long size; 
  1517.   unsigned long headerSize;
  1518.   data_tag tag;
  1519.   void* header = NULL;
  1520.   WAISDocumentHeader** docHeaders = NULL;
  1521.   WAISDocumentShortHeader** shortHeaders = NULL;
  1522.   WAISDocumentLongHeader** longHeaders = NULL;
  1523.   WAISDocumentText** text = NULL;
  1524.   WAISDocumentHeadlines** headlines = NULL;
  1525.   WAISDocumentCodes** codes = NULL;
  1526.   long numDocHeaders,numLongHeaders,numShortHeaders,numText,numHeadlines;
  1527.   long numCodes;
  1528.   char* seedWordsUsed = NULL;
  1529.   diagnosticRecord** diags = NULL;
  1530.   diagnosticRecord* diag = NULL;
  1531.   long numDiags = 0;
  1532.   
  1533.   numDocHeaders = numLongHeaders = numShortHeaders = numText = numHeadlines = numCodes = 0;
  1534.   
  1535.   buf = readUserInfoHeader(&tag,&size,buf);
  1536.   headerSize = buf - buffer;
  1537.     
  1538.   while (buf < (buffer + size + headerSize))
  1539.    { data_tag tag = peekTag(buf);
  1540.      switch (tag)
  1541.       { case DT_SeedWordsUsed:
  1542.             buf = readString(&seedWordsUsed,buf);
  1543.             break;
  1544.           case DT_DatabaseDiagnosticRecords:
  1545.             if (diags == NULL) /* create a new diag list */
  1546.              { diags = (diagnosticRecord**)s_malloc((size_t)sizeof(diagnosticRecord*) * 2);
  1547.              }
  1548.             else /* grow the diag list */
  1549.              { diags = (diagnosticRecord**)s_realloc((char*)diags,(size_t)(sizeof(diagnosticRecord*) * (numDiags + 2)));
  1550.              }
  1551.             buf = readDiag(&diag,buf);
  1552.             diags[numDiags++] = diag; /* put it in the list */
  1553.             diags[numDiags] = NULL;
  1554.             break;
  1555.           case DT_DocumentHeaderGroup:
  1556.             if (docHeaders == NULL) /* create a new header list */
  1557.              { docHeaders = (WAISDocumentHeader**)s_malloc((size_t)sizeof(WAISDocumentHeader*) * 2);
  1558.              }
  1559.             else /* grow the doc list */
  1560.              { docHeaders = (WAISDocumentHeader**)s_realloc((char*)docHeaders,(size_t)(sizeof(WAISDocumentHeader*) * (numDocHeaders + 2)));
  1561.              }
  1562.             buf = readWAISDocumentHeader((WAISDocumentHeader**)&header,buf);
  1563.           cleanUpWaisSearchResponse(buf,seedWordsUsed,docHeaders,shortHeaders,longHeaders,text,headlines,codes,diags);
  1564.             RETURN_ON_NULL(buf);
  1565.             docHeaders[numDocHeaders++] = 
  1566.             (WAISDocumentHeader*)header; /* put it in the list */
  1567.             docHeaders[numDocHeaders] = NULL;
  1568.             break;
  1569.           case DT_DocumentShortHeaderGroup:
  1570.             if (shortHeaders == NULL) /* create a new header list */
  1571.              { shortHeaders = (WAISDocumentShortHeader**)s_malloc((size_t)sizeof(WAISDocumentShortHeader*) * 2);
  1572.              }
  1573.             else /* grow the doc list */
  1574.              { shortHeaders = (WAISDocumentShortHeader**)s_realloc((char*)shortHeaders,(size_t)(sizeof(WAISDocumentShortHeader*) * (numShortHeaders + 2)));
  1575.              }
  1576.             buf = readWAISDocumentShortHeader((WAISDocumentShortHeader**)&header,buf);
  1577.           cleanUpWaisSearchResponse(buf,seedWordsUsed,docHeaders,shortHeaders,longHeaders,text,headlines,codes,diags);
  1578.             RETURN_ON_NULL(buf);
  1579.             shortHeaders[numShortHeaders++] = 
  1580.             (WAISDocumentShortHeader*)header; /* put it in the list */
  1581.             shortHeaders[numShortHeaders] = NULL;
  1582.             break;
  1583.           case DT_DocumentLongHeaderGroup:
  1584.             if (longHeaders == NULL) /* create a new header list */
  1585.              { longHeaders = (WAISDocumentLongHeader**)s_malloc((size_t)sizeof(WAISDocumentLongHeader*) * 2);
  1586.              }
  1587.             else /* grow the doc list */
  1588.              { longHeaders = (WAISDocumentLongHeader**)s_realloc((char*)longHeaders,(size_t)(sizeof(WAISDocumentLongHeader*) * (numLongHeaders + 2)));
  1589.              }
  1590.             buf = readWAISDocumentLongHeader((WAISDocumentLongHeader**)&header,buf);
  1591.           cleanUpWaisSearchResponse(buf,seedWordsUsed,docHeaders,shortHeaders,longHeaders,text,headlines,codes,diags);
  1592.             RETURN_ON_NULL(buf);
  1593.             longHeaders[numLongHeaders++] = 
  1594.             (WAISDocumentLongHeader*)header; /* put it in the list */
  1595.             longHeaders[numLongHeaders] = NULL;
  1596.             break;
  1597.         case DT_DocumentTextGroup:
  1598.             if (text == NULL) /* create a new list */
  1599.              { text = (WAISDocumentText**)s_malloc((size_t)sizeof(WAISDocumentText*) * 2);
  1600.              }
  1601.             else /* grow the list */
  1602.              { text = (WAISDocumentText**)s_realloc((char*)text,(size_t)(sizeof(WAISDocumentText*) * (numText + 2)));
  1603.              }
  1604.             buf = readWAISDocumentText((WAISDocumentText**)&header,buf);
  1605.           cleanUpWaisSearchResponse(buf,seedWordsUsed,docHeaders,shortHeaders,longHeaders,text,headlines,codes,diags);
  1606.             RETURN_ON_NULL(buf);
  1607.             text[numText++] = 
  1608.             (WAISDocumentText*)header; /* put it in the list */
  1609.             text[numText] = NULL;
  1610.             break;
  1611.           case DT_DocumentHeadlineGroup:
  1612.             if (headlines == NULL) /* create a new list */
  1613.              { headlines = (WAISDocumentHeadlines**)s_malloc((size_t)sizeof(WAISDocumentHeadlines*) * 2);
  1614.              }
  1615.             else /* grow the list */
  1616.              { headlines = (WAISDocumentHeadlines**)s_realloc((char*)headlines,(size_t)(sizeof(WAISDocumentHeadlines*) * (numHeadlines + 2)));
  1617.              }
  1618.             buf = readWAISDocumentHeadlines((WAISDocumentHeadlines**)&header,buf);
  1619.           cleanUpWaisSearchResponse(buf,seedWordsUsed,docHeaders,shortHeaders,longHeaders,text,headlines,codes,diags);
  1620.             RETURN_ON_NULL(buf);
  1621.             headlines[numHeadlines++] = 
  1622.             (WAISDocumentHeadlines*)header; /* put it in the list */
  1623.             headlines[numHeadlines] = NULL;
  1624.             break;
  1625.           case DT_DocumentCodeGroup:
  1626.             if (codes == NULL) /* create a new list */
  1627.              { codes = (WAISDocumentCodes**)s_malloc((size_t)sizeof(WAISDocumentCodes*) * 2);
  1628.              }
  1629.             else /* grow the list */
  1630.              { codes = (WAISDocumentCodes**)s_realloc((char*)codes,(size_t)(sizeof(WAISDocumentCodes*) * (numCodes + 2)));
  1631.              }
  1632.             buf = readWAISDocumentCodes((WAISDocumentCodes**)&header,buf);
  1633.           cleanUpWaisSearchResponse(buf,seedWordsUsed,docHeaders,shortHeaders,longHeaders,text,headlines,codes,diags);
  1634.             RETURN_ON_NULL(buf);
  1635.             codes[numCodes++] = 
  1636.             (WAISDocumentCodes*)header; /* put it in the list */
  1637.             codes[numCodes] = NULL;
  1638.             break;
  1639.         default:
  1640.           cleanUpWaisSearchResponse(buf,seedWordsUsed,docHeaders,shortHeaders,longHeaders,text,headlines,codes,diags);
  1641.           REPORT_READ_ERROR(buf);
  1642.           break;
  1643.       }
  1644.    }
  1645.         
  1646.   *info = (void *)makeWAISSearchResponse(seedWordsUsed,docHeaders,shortHeaders,
  1647.                  longHeaders,text,headlines,codes,diags);
  1648.   
  1649.   return(buf);
  1650. }
  1651.  
  1652. /*----------------------------------------------------------------------*/
  1653.  
  1654. WAISDocumentText*
  1655. makeWAISDocumentText(docID,versionNumber,documentText)
  1656. any* docID;
  1657. long versionNumber;
  1658. any* documentText;
  1659. {
  1660.   WAISDocumentText* docText = (WAISDocumentText*)s_malloc((size_t)sizeof(WAISDocumentText));
  1661.  
  1662.   docText->DocumentID = docID;
  1663.   docText->VersionNumber = versionNumber;
  1664.   docText->DocumentText = documentText;
  1665.   
  1666.   return(docText);
  1667. }
  1668.  
  1669. /*----------------------------------------------------------------------*/
  1670.  
  1671. void 
  1672. freeWAISDocumentText(docText)
  1673. WAISDocumentText* docText;
  1674. {
  1675.   freeAny(docText->DocumentID);
  1676.   freeAny(docText->DocumentText);
  1677.   s_free(docText);
  1678. }
  1679.  
  1680. /*----------------------------------------------------------------------*/
  1681.  
  1682. char* 
  1683. writeWAISDocumentText(docText,buffer,len)
  1684. WAISDocumentText* docText;
  1685. char* buffer;
  1686. long* len;
  1687. {
  1688.   unsigned long header_len = userInfoTagSize(DT_DocumentTextGroup,
  1689.                                             DefWAISDocTextSize);
  1690.   char* buf = buffer + header_len;
  1691.   unsigned long size;
  1692.   
  1693.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  1694.  
  1695.   buf = writeAny(docText->DocumentID,DT_DocumentID,buf,len);
  1696.   buf = writeNum(docText->VersionNumber,DT_VersionNumber,buf,len);
  1697.   buf = writeAny(docText->DocumentText,DT_DocumentText,buf,len);
  1698.   
  1699.   /* now write the header and size */
  1700.   size = buf - buffer; 
  1701.   buf = writeUserInfoHeader(DT_DocumentTextGroup,size,header_len,buffer,len);
  1702.  
  1703.   return(buf);
  1704. }
  1705.  
  1706. /*----------------------------------------------------------------------*/
  1707.  
  1708. char* 
  1709. readWAISDocumentText(docText,buffer)
  1710. WAISDocumentText** docText;
  1711. char* buffer;
  1712. {
  1713.   char* buf = buffer;
  1714.   unsigned long size; 
  1715.   unsigned long headerSize;
  1716.   data_tag tag;
  1717.   any *docID,*documentText;
  1718.   long versionNumber;
  1719.   
  1720.   docID = documentText = NULL;
  1721.   versionNumber = UNUSED;
  1722.   
  1723.   buf = readUserInfoHeader(&tag,&size,buf);
  1724.   headerSize = buf - buffer;
  1725.     
  1726.   while (buf < (buffer + size + headerSize))
  1727.    { data_tag tag = peekTag(buf);
  1728.      switch (tag)
  1729.       { case DT_DocumentID:
  1730.             buf = readAny(&docID,buf);
  1731.             break;
  1732.           case DT_VersionNumber:
  1733.             buf = readNum(&versionNumber,buf);
  1734.             break;
  1735.           case DT_DocumentText:
  1736.             buf = readAny(&documentText,buf);
  1737.             break;
  1738.         default:
  1739.           freeAny(docID);
  1740.           freeAny(documentText);
  1741.           REPORT_READ_ERROR(buf);
  1742.           break;
  1743.       }
  1744.    }
  1745.         
  1746.   *docText = makeWAISDocumentText(docID,versionNumber,documentText);
  1747.   return(buf);
  1748. }
  1749.  
  1750. /*----------------------------------------------------------------------*/
  1751.  
  1752. WAISDocumentHeadlines*
  1753. makeWAISDocumentHeadlines(docID,
  1754.               versionNumber,
  1755.               source,
  1756.               date,
  1757.               headline,
  1758.               originCity)
  1759. any* docID;
  1760. long versionNumber;
  1761. char* source;
  1762. char* date;
  1763. char* headline;
  1764. char* originCity;
  1765. {
  1766.   WAISDocumentHeadlines* docHeadline =
  1767.     (WAISDocumentHeadlines*)s_malloc((size_t)sizeof(WAISDocumentHeadlines));
  1768.  
  1769.   docHeadline->DocumentID = docID;
  1770.   docHeadline->VersionNumber = versionNumber;
  1771.   docHeadline->Source = source;
  1772.   docHeadline->Date = date;
  1773.   docHeadline->Headline = headline;
  1774.   docHeadline->OriginCity = originCity;
  1775.   
  1776.   return(docHeadline);
  1777. }
  1778.  
  1779. /*----------------------------------------------------------------------*/
  1780.  
  1781. void 
  1782. freeWAISDocumentHeadlines(docHeadline)
  1783. WAISDocumentHeadlines* docHeadline;
  1784. {
  1785.   freeAny(docHeadline->DocumentID);
  1786.   s_free(docHeadline->Source);
  1787.   s_free(docHeadline->Date);
  1788.   s_free(docHeadline->Headline);
  1789.   s_free(docHeadline->OriginCity);
  1790.   s_free(docHeadline);
  1791. }
  1792.  
  1793. /*----------------------------------------------------------------------*/
  1794.  
  1795. char* 
  1796. writeWAISDocumentHeadlines(docHeadline,buffer,len)
  1797. WAISDocumentHeadlines* docHeadline;
  1798. char* buffer;
  1799. long* len;
  1800. {
  1801.   unsigned long header_len = userInfoTagSize(DT_DocumentHeadlineGroup,
  1802.                                             DefWAISDocHeadlineSize);
  1803.   char* buf = buffer + header_len;
  1804.   unsigned long size;
  1805.   
  1806.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  1807.  
  1808.   buf = writeAny(docHeadline->DocumentID,DT_DocumentID,buf,len);
  1809.   buf = writeNum(docHeadline->VersionNumber,DT_VersionNumber,buf,len);
  1810.   buf = writeString(docHeadline->Source,DT_Source,buf,len);
  1811.   buf = writeString(docHeadline->Date,DT_Date,buf,len);
  1812.   buf = writeString(docHeadline->Headline,DT_Headline,buf,len);
  1813.   buf = writeString(docHeadline->OriginCity,DT_OriginCity,buf,len);
  1814.   
  1815.   /* now write the header and size */
  1816.   size = buf - buffer; 
  1817.   buf = writeUserInfoHeader(DT_DocumentHeadlineGroup,size,header_len,buffer,len);
  1818.  
  1819.   return(buf);
  1820. }
  1821.  
  1822. /*----------------------------------------------------------------------*/
  1823.  
  1824. char* 
  1825. readWAISDocumentHeadlines(docHeadline,buffer)
  1826. WAISDocumentHeadlines** docHeadline;
  1827. char* buffer;
  1828. {
  1829.   char* buf = buffer;
  1830.   unsigned long size; 
  1831.   unsigned long headerSize;
  1832.   data_tag tag;
  1833.   any* docID;
  1834.   long versionNumber;
  1835.   char *source,*date,*headline,*originCity;
  1836.   
  1837.   docID = NULL;
  1838.   versionNumber = UNUSED;
  1839.   source = date = headline = originCity = NULL;
  1840.   
  1841.   buf = readUserInfoHeader(&tag,&size,buf);
  1842.   headerSize = buf - buffer;
  1843.     
  1844.   while (buf < (buffer + size + headerSize))
  1845.    { data_tag tag = peekTag(buf);
  1846.      switch (tag)
  1847.       { case DT_DocumentID:
  1848.             buf = readAny(&docID,buf);
  1849.             break;
  1850.           case DT_VersionNumber:
  1851.             buf = readNum(&versionNumber,buf);
  1852.             break;
  1853.           case DT_Source:
  1854.             buf = readString(&source,buf);
  1855.             break;
  1856.           case DT_Date:
  1857.             buf = readString(&date,buf);
  1858.             break;
  1859.           case DT_Headline:
  1860.             buf = readString(&headline,buf);
  1861.             break;
  1862.           case DT_OriginCity:
  1863.             buf = readString(&originCity,buf);
  1864.             break;
  1865.         default:
  1866.           freeAny(docID);
  1867.           s_free(source);
  1868.           s_free(date);
  1869.           s_free(headline);
  1870.           s_free(originCity);
  1871.           REPORT_READ_ERROR(buf);
  1872.           break;
  1873.       }
  1874.    }
  1875.         
  1876.   *docHeadline = makeWAISDocumentHeadlines(docID,versionNumber,source,date,
  1877.                                              headline,originCity);
  1878.   return(buf);
  1879. }
  1880.  
  1881. /*----------------------------------------------------------------------*/
  1882.  
  1883. WAISDocumentCodes*
  1884. makeWAISDocumentCodes(docID,
  1885.               versionNumber,
  1886.               stockCodes,
  1887.               companyCodes,
  1888.               industryCodes)
  1889. any* docID;
  1890. long versionNumber;
  1891. char* stockCodes;
  1892. char* companyCodes;
  1893. char* industryCodes;
  1894. {
  1895.   WAISDocumentCodes* docCodes = (WAISDocumentCodes*)s_malloc((size_t)sizeof(WAISDocumentCodes));
  1896.  
  1897.   docCodes->DocumentID = docID;
  1898.   docCodes->VersionNumber = versionNumber;
  1899.   docCodes->StockCodes = stockCodes;
  1900.   docCodes->CompanyCodes = companyCodes;
  1901.   docCodes->IndustryCodes = industryCodes;
  1902.   
  1903.   return(docCodes);
  1904. }
  1905.  
  1906. /*----------------------------------------------------------------------*/
  1907.  
  1908. void 
  1909. freeWAISDocumentCodes(docCodes)
  1910. WAISDocumentCodes* docCodes;
  1911. {
  1912.   freeAny(docCodes->DocumentID);
  1913.   s_free(docCodes->StockCodes);
  1914.   s_free(docCodes->CompanyCodes);
  1915.   s_free(docCodes->IndustryCodes);
  1916.   s_free(docCodes);
  1917. }
  1918.  
  1919. /*----------------------------------------------------------------------*/
  1920.  
  1921. char* 
  1922. writeWAISDocumentCodes(docCodes,buffer,len)
  1923. WAISDocumentCodes* docCodes;
  1924. char* buffer;
  1925. long* len;
  1926. {
  1927.   unsigned long header_len = userInfoTagSize(DT_DocumentCodeGroup ,
  1928.                                             DefWAISDocCodeSize);
  1929.   char* buf = buffer + header_len;
  1930.   unsigned long size;
  1931.   
  1932.   RESERVE_SPACE_FOR_WAIS_HEADER(len);
  1933.  
  1934.   buf = writeAny(docCodes->DocumentID,DT_DocumentID,buf,len);
  1935.   buf = writeNum(docCodes->VersionNumber,DT_VersionNumber,buf,len);
  1936.   buf = writeString(docCodes->StockCodes,DT_StockCodes,buf,len);
  1937.   buf = writeString(docCodes->CompanyCodes,DT_CompanyCodes,buf,len);
  1938.   buf = writeString(docCodes->IndustryCodes,DT_IndustryCodes,buf,len);
  1939.   
  1940.   /* now write the header and size */
  1941.   size = buf - buffer; 
  1942.   buf = writeUserInfoHeader(DT_DocumentCodeGroup,size,header_len,buffer,len);
  1943.  
  1944.   return(buf);
  1945. }
  1946.  
  1947. /*----------------------------------------------------------------------*/
  1948.  
  1949. char* 
  1950. readWAISDocumentCodes(docCodes,buffer)
  1951. WAISDocumentCodes** docCodes;
  1952. char* buffer;
  1953. {
  1954.   char* buf = buffer;
  1955.   unsigned long size; 
  1956.   unsigned long headerSize;
  1957.   data_tag tag;
  1958.   any* docID;
  1959.   long versionNumber;
  1960.   char *stockCodes,*companyCodes,*industryCodes;
  1961.   
  1962.   docID = NULL;
  1963.   versionNumber = UNUSED;
  1964.   stockCodes = companyCodes = industryCodes = NULL;
  1965.   
  1966.   buf = readUserInfoHeader(&tag,&size,buf);
  1967.   headerSize = buf - buffer;
  1968.     
  1969.   while (buf < (buffer + size + headerSize))
  1970.    { data_tag tag = peekTag(buf);
  1971.      switch (tag)
  1972.       { case DT_DocumentID:
  1973.             buf = readAny(&docID,buf);
  1974.             break;
  1975.           case DT_VersionNumber:
  1976.             buf = readNum(&versionNumber,buf);
  1977.             break;
  1978.           case DT_StockCodes:
  1979.             buf = readString(&stockCodes,buf);
  1980.             break;
  1981.           case DT_CompanyCodes:
  1982.             buf = readString(&companyCodes,buf);
  1983.             break;
  1984.           case DT_IndustryCodes:
  1985.             buf = readString(&industryCodes,buf);
  1986.             break;
  1987.         default:
  1988.           freeAny(docID);
  1989.           s_free(stockCodes);
  1990.           s_free(companyCodes);
  1991.           s_free(industryCodes);
  1992.           REPORT_READ_ERROR(buf);
  1993.           break;
  1994.       }
  1995.    }
  1996.         
  1997.   *docCodes = makeWAISDocumentCodes(docID,versionNumber,stockCodes,
  1998.                                       companyCodes,industryCodes);
  1999.   return(buf);
  2000. }
  2001.  
  2002. /*----------------------------------------------------------------------*/
  2003.  
  2004. char* 
  2005. writePresentInfo(present,buffer,len)
  2006. PresentAPDU* present;
  2007. char* buffer;
  2008. long* len;
  2009. {
  2010.   /* The WAIS protocol doesn't use present info */
  2011.   return(buffer);
  2012. }
  2013.  
  2014. /*----------------------------------------------------------------------*/
  2015.  
  2016. char* 
  2017. readPresentInfo(info,buffer)
  2018. void** info;
  2019. char* buffer;
  2020. {
  2021.   /* The WAIS protocol doesn't use present info */
  2022.   *info = NULL;
  2023.   return(buffer);
  2024. }
  2025.  
  2026. /*----------------------------------------------------------------------*/
  2027.  
  2028. char* 
  2029. writePresentResponseInfo(response,buffer,len)
  2030. PresentResponseAPDU* response;
  2031. char* buffer;
  2032. long* len;
  2033. {
  2034.   /* The WAIS protocol doesn't use presentResponse info */
  2035.   return(buffer);
  2036. }
  2037.  
  2038. /*----------------------------------------------------------------------*/
  2039.  
  2040. char* 
  2041. readPresentResponseInfo(info,buffer)
  2042. void** info;
  2043. char* buffer;
  2044. {
  2045.   /* The WAIS protocol doesn't use presentResponse info */
  2046.   *info = NULL;
  2047.   return(buffer);
  2048. }
  2049.  
  2050. /*----------------------------------------------------------------------*/
  2051.  
  2052. /* support for type 1 queries */
  2053.  
  2054. /* new use values (for the chunk types) */
  2055. #define    BYTE        "wb"
  2056. #define    LINE        "wl"
  2057. #define    PARAGRAPH    "wp"
  2058. #define DATA_TYPE    "wt"
  2059.  
  2060. /* WAIS supports the following semantics for type 1 queries:
  2061.        
  2062.      1.  retrieve the header/codes from a document:
  2063.  
  2064.             System_Control_Number = docID
  2065.             Data Type = type (optional)
  2066.             And
  2067.  
  2068.      2.  retrieve a fragment of the text of a document:
  2069.  
  2070.             System_Control_Number = docID
  2071.             Data Type = type (optional)
  2072.             And
  2073.             Chunk >= start
  2074.             And
  2075.             Chunk < end
  2076.             And
  2077.  
  2078.            Information from multiple documents may be requested by using 
  2079.            groups of the above joined by:
  2080.  
  2081.             OR
  2082.  
  2083.            ( XXX does an OR come after every group but the first, or do they
  2084.               all come at the end? )
  2085.               
  2086.         ( XXX return type could be in the element set)
  2087. */
  2088.  
  2089. static query_term** makeWAISQueryTerms _AP((DocObj** docs));
  2090.    
  2091. static query_term**
  2092. makeWAISQueryTerms(docs)
  2093. DocObj** docs;
  2094. /* given a null terminated list of docObjs, construct the appropriate
  2095.    query of the form given above
  2096.  */
  2097. {
  2098.   query_term** terms = NULL;
  2099.   long numTerms = 0;
  2100.   DocObj* doc = NULL;
  2101.   long i;
  2102.  
  2103.   if (docs == NULL)
  2104.     return((query_term**)NULL);
  2105.  
  2106.   terms = (query_term**)s_malloc((size_t)(sizeof(query_term*) * 1));
  2107.   terms[numTerms] = NULL;
  2108.  
  2109.   /* loop through the docs making terms for them all */
  2110.   for (i = 0,doc = docs[i]; doc != NULL; doc = docs[++i])
  2111.     { any* type = NULL;
  2112.  
  2113.       if (doc->Type != NULL)
  2114.     type = stringToAny(doc->Type);
  2115.  
  2116.       if (doc->ChunkCode == CT_document) /* a whole document */
  2117.     { terms = (query_term**)s_realloc((char*)terms,
  2118.                       (size_t)(sizeof(query_term*) * 
  2119.                            (numTerms + 3 + 1)));
  2120.       terms[numTerms++] = makeAttributeTerm(SYSTEM_CONTROL_NUMBER,
  2121.                         EQUAL,IGNORE,IGNORE,
  2122.                         IGNORE,IGNORE,doc->DocumentID);
  2123.       if (type != NULL)
  2124.        { terms[numTerms++] = makeAttributeTerm(DATA_TYPE,EQUAL,
  2125.                            IGNORE,IGNORE,IGNORE,
  2126.                            IGNORE,type);
  2127.          terms[numTerms++] = makeOperatorTerm(AND);
  2128.            }
  2129.       terms[numTerms] = NULL;
  2130.     }
  2131.       else            /* a document fragment */
  2132.     {    char chunk_att[ATTRIBUTE_SIZE];
  2133.         any* startChunk = NULL;
  2134.         any* endChunk = NULL;
  2135.  
  2136.         terms = (query_term**)s_realloc((char*)terms,
  2137.                         (size_t)(sizeof(query_term*) * 
  2138.                              (numTerms + 7 + 1)));
  2139.  
  2140.         switch (doc->ChunkCode)
  2141.           { case CT_byte:
  2142.             case CT_line:
  2143.               { char start[20],end[20];
  2144.             (doc->ChunkCode == CT_byte) ?
  2145.               strncpy(chunk_att,BYTE,ATTRIBUTE_SIZE) :
  2146.             strncpy(chunk_att,LINE,ATTRIBUTE_SIZE);    
  2147.             sprintf(start,"%ld",doc->ChunkStart.Pos);
  2148.             startChunk = stringToAny(start);
  2149.             sprintf(end,"%ld",doc->ChunkEnd.Pos);
  2150.             endChunk = stringToAny(end);
  2151.               }
  2152.               break;
  2153.             case CT_paragraph:
  2154.               strncpy(chunk_att,PARAGRAPH,ATTRIBUTE_SIZE);
  2155.               startChunk = doc->ChunkStart.ID;
  2156.               endChunk = doc->ChunkEnd.ID;
  2157.               break;
  2158.             default:
  2159.               /* error */
  2160.               break;
  2161.             }
  2162.  
  2163.         terms[numTerms++] = makeAttributeTerm(SYSTEM_CONTROL_NUMBER,
  2164.                               EQUAL,IGNORE,IGNORE,
  2165.                               IGNORE,
  2166.                               IGNORE,doc->DocumentID);
  2167.         if (type != NULL)
  2168.          { terms[numTerms++] = makeAttributeTerm(DATA_TYPE,EQUAL,IGNORE,
  2169.                              IGNORE,IGNORE,IGNORE,
  2170.                              type);
  2171.            terms[numTerms++] = makeOperatorTerm(AND);
  2172.          }
  2173.         terms[numTerms++] = makeAttributeTerm(chunk_att,
  2174.                               GREATER_THAN_OR_EQUAL,
  2175.                               IGNORE,IGNORE,IGNORE, 
  2176.                               IGNORE,
  2177.                               startChunk);
  2178.         terms[numTerms++] = makeOperatorTerm(AND);
  2179.         terms[numTerms++] = makeAttributeTerm(chunk_att,LESS_THAN,
  2180.                               IGNORE,IGNORE,IGNORE,
  2181.                               IGNORE,
  2182.                               endChunk);
  2183.         terms[numTerms++] = makeOperatorTerm(AND);
  2184.         terms[numTerms] = NULL;
  2185.  
  2186.         if (doc->ChunkCode == CT_byte || doc->ChunkCode == CT_line)
  2187.           { freeAny(startChunk);
  2188.             freeAny(endChunk);
  2189.           }
  2190.           }
  2191.       
  2192.       freeAny(type);
  2193.       
  2194.      if (i != 0) /* multiple independent queries, need a disjunction */
  2195.     { terms = (query_term**)s_realloc((char*)terms,
  2196.                       (size_t)(sizeof(query_term*) * 
  2197.                            (numTerms + 1 + 1)));
  2198.       terms[numTerms++] = makeOperatorTerm(OR);
  2199.       terms[numTerms] = NULL;
  2200.     }
  2201.     }
  2202.  
  2203.   return(terms);
  2204. }
  2205.  
  2206. /*----------------------------------------------------------------------*/
  2207.  
  2208. static DocObj** makeWAISQueryDocs _AP((query_term** terms));
  2209.  
  2210. static DocObj** 
  2211. makeWAISQueryDocs(terms)
  2212. query_term** terms;
  2213. /* given a list of terms in the form given above, convert them to 
  2214.    DocObjs.
  2215.  */
  2216. {
  2217.   query_term* docTerm = NULL;
  2218.   query_term* fragmentTerm = NULL;
  2219.   DocObj** docs = NULL;
  2220.   DocObj* doc = NULL;
  2221.   long docNum,termNum;
  2222.  
  2223.   docNum = termNum = 0;
  2224.   
  2225.   docs = (DocObj**)s_malloc((size_t)(sizeof(DocObj*) * 1));
  2226.   docs[docNum] = NULL;
  2227.  
  2228.   /* translate the terms into DocObjs */
  2229.   while (true)
  2230.     {          
  2231.       query_term* typeTerm = NULL;
  2232.       char* type = NULL;
  2233.       long startTermOffset;
  2234.  
  2235.       docTerm = terms[termNum];
  2236.      
  2237.       if (docTerm == NULL)
  2238.     break;            /* we're done converting */;
  2239.  
  2240.       typeTerm = terms[termNum + 1]; /* get the lead Term if it exists */
  2241.  
  2242.       if (strcmp(typeTerm->Use,DATA_TYPE) == 0)    /* we do have a type */
  2243.        { startTermOffset = 3;    
  2244.      type = anyToString(typeTerm->Term);
  2245.        }
  2246.       else                        /* no type */
  2247.        { startTermOffset = 1;
  2248.      typeTerm = NULL;
  2249.      type = NULL;
  2250.        }
  2251.  
  2252.       /* grow the doc list */
  2253.       docs = (DocObj**)s_realloc((char*)docs,(size_t)(sizeof(DocObj*) * 
  2254.                               (docNum + 1 + 1)));
  2255.  
  2256.       /* figure out what kind of docObj to build - and build it */
  2257.       fragmentTerm = terms[termNum + startTermOffset];
  2258.       if (fragmentTerm != NULL && fragmentTerm->TermType == TT_Attribute)
  2259.     {            /* build a document fragment */
  2260.       query_term* startTerm = fragmentTerm;
  2261.       query_term* endTerm = terms[termNum + startTermOffset + 2]; 
  2262.  
  2263.       if (strcmp(startTerm->Use,BYTE) == 0) /* a byte chunk */
  2264.         doc = makeDocObjUsingBytes(duplicateAny(docTerm->Term),
  2265.                        type,
  2266.                        anyToLong(startTerm->Term),
  2267.                        anyToLong(endTerm->Term));
  2268.       else if (strcmp(startTerm->Use,LINE) == 0) /* a line chunk */
  2269.         doc = makeDocObjUsingLines(duplicateAny(docTerm->Term),
  2270.                        type,
  2271.                        anyToLong(startTerm->Term),
  2272.                        anyToLong(endTerm->Term));
  2273.       else            /* a paragraph chunk */
  2274.         doc = makeDocObjUsingParagraphs(duplicateAny(docTerm->Term),
  2275.                         type,
  2276.                         duplicateAny(startTerm->Term),
  2277.                         duplicateAny(endTerm->Term));
  2278.       termNum += (startTermOffset + 4);    /* point to next term */
  2279.     }
  2280.       else            /* build a full document */
  2281.     { 
  2282.       doc = makeDocObjUsingWholeDocument(duplicateAny(docTerm->Term),
  2283.                          type);
  2284.       termNum += startTermOffset;    /* point to next term */
  2285.     }
  2286.      
  2287.       docs[docNum++] = doc;    /* insert the new document */
  2288.      
  2289.       docs[docNum] = NULL;    /* keep the doc list terminated */
  2290.  
  2291.      
  2292.       if (terms[termNum] != NULL)
  2293.     termNum++; /* skip the OR operator it necessary */
  2294.       else
  2295.     break; /* we are done */
  2296.     }
  2297.  
  2298.   return(docs);
  2299. }
  2300.  
  2301. /*----------------------------------------------------------------------*/
  2302.  
  2303. any* 
  2304. makeWAISTextQuery(docs)
  2305. DocObj** docs;
  2306. /* given a list of DocObjs, return an any whose contents is the corresponding
  2307.    type 1 query
  2308.  */
  2309. {
  2310.   any *buf = NULL;
  2311.   query_term** terms = NULL;
  2312.   
  2313.   terms = makeWAISQueryTerms(docs);
  2314.   buf = writeQuery(terms);
  2315.   
  2316.   doList((void**)terms,freeTerm);
  2317.   s_free(terms);
  2318.   
  2319.   return(buf);
  2320. }
  2321.  
  2322. /*----------------------------------------------------------------------*/
  2323.  
  2324. DocObj** 
  2325. readWAISTextQuery(buf)
  2326. any* buf;
  2327. /* given an any whose contents are type 1 queries of the WAIS sort, 
  2328.    construct a list of the corresponding DocObjs
  2329.  */
  2330. {
  2331.   query_term** terms = NULL;
  2332.   DocObj** docs = NULL;
  2333.   
  2334.   terms = readQuery(buf);
  2335.   docs = makeWAISQueryDocs(terms);
  2336.   
  2337.   doList((void**)terms,freeTerm);
  2338.   s_free(terms);
  2339.   
  2340.   return(docs);
  2341. }
  2342.  
  2343. /*----------------------------------------------------------------------*/
  2344. /* Customized free WAIS object routines:                                */
  2345. /*                                                                      */
  2346. /*   This set of procedures is for applications to free a WAIS object   */
  2347. /*   which was made with makeWAISFOO.                                   */
  2348. /*   Each procedure frees only the memory that was allocated in its     */
  2349. /*   associated makeWAISFOO routine, thus it's not necessary for the    */
  2350. /*   caller to assign nulls to the pointer fields of the WAIS object.  */
  2351. /*----------------------------------------------------------------------*/
  2352.  
  2353. void 
  2354. CSTFreeWAISInitResponse(init)
  2355. WAISInitResponse* init;
  2356. /* free an object made with makeWAISInitResponse */
  2357. {
  2358.   s_free(init);
  2359. }
  2360.  
  2361. /*----------------------------------------------------------------------*/
  2362.  
  2363. void 
  2364. CSTFreeWAISSearch(query)
  2365. WAISSearch* query;
  2366. /* destroy an object made with makeWAISSearch() */
  2367.   s_free(query);
  2368. }
  2369.  
  2370. /*----------------------------------------------------------------------*/
  2371.  
  2372. void
  2373. CSTFreeDocObj(doc)
  2374. DocObj* doc;
  2375. /* free a docObj */
  2376.     s_free(doc);
  2377. }
  2378.  
  2379. /*----------------------------------------------------------------------*/
  2380.  
  2381. void
  2382. CSTFreeWAISDocumentHeader(header)
  2383. WAISDocumentHeader* header;
  2384.     s_free(header);
  2385. }
  2386.  
  2387. /*----------------------------------------------------------------------*/
  2388.  
  2389. void
  2390. CSTFreeWAISDocumentShortHeader(header)
  2391. WAISDocumentShortHeader* header;
  2392.   s_free(header);
  2393. }
  2394. /*----------------------------------------------------------------------*/
  2395.  
  2396. void
  2397. CSTFreeWAISDocumentLongHeader(header)
  2398. WAISDocumentLongHeader* header;
  2399. {
  2400.   s_free(header);
  2401. }
  2402.  
  2403. /*----------------------------------------------------------------------*/
  2404.  
  2405. void
  2406. CSTFreeWAISSearchResponse(response)
  2407. WAISSearchResponse* response;
  2408.   s_free(response);
  2409. }
  2410.  
  2411. /*----------------------------------------------------------------------*/
  2412.  
  2413. void 
  2414. CSTFreeWAISDocumentText(docText)
  2415. WAISDocumentText* docText;
  2416.   s_free(docText);
  2417. }
  2418.  
  2419. /*----------------------------------------------------------------------*/
  2420.  
  2421. void 
  2422. CSTFreeWAISDocumentHeadlines(docHeadline)
  2423. WAISDocumentHeadlines* docHeadline;
  2424.   s_free(docHeadline);
  2425. }
  2426.  
  2427. /*----------------------------------------------------------------------*/
  2428.  
  2429. void 
  2430. CSTFreeWAISDocumentCodes(docCodes)
  2431. WAISDocumentCodes* docCodes;
  2432. {
  2433.   s_free(docCodes);
  2434. }
  2435.  
  2436. /*----------------------------------------------------------------------*/
  2437.  
  2438. void 
  2439. CSTFreeWAISTextQuery(query)
  2440. any* query;
  2441. {
  2442.    freeAny(query);
  2443. }
  2444.  
  2445. /*----------------------------------------------------------------------*/
  2446.